367. 有效的完全平方数
为保证权益,题目请参考 367. 有效的完全平方数(From LeetCode).
解决方案1
Python
python
# 367. 有效的完全平方数
# https://leetcode-cn.com/problems/valid-perfect-square/
################################################################################
class Solution:
def isPerfectSquare(self, num: int) -> bool:
i = 1
while i ** 2 < num:
i += 1
return num == i ** 2
################################################################################
if __name__ == "__main__":
solution = Solution()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19